home *** CD-ROM | disk | FTP | other *** search
/ Interplay's Learn to Program Basic (Review Copy) / Learn to Program Basic Review Copy (Interplay)(June 23, 1998).ISO / pc / ltpbasic / refxmpl / button.bas < prev    next >
BASIC Source File  |  1998-04-07  |  132b  |  10 lines

  1. CLS
  2. While True
  3. If Button Then
  4. Print "You clicked the mouse button!"
  5. Else Print "You didn't click the mouse button."
  6. Endif
  7. Wend
  8. End
  9.  
  10.